/* ---- pc menu_btn of index Style ---- */
.toggleNav {
	display: none;
}


@media screen and (min-width:240px) and (max-width:968px){


.toggleNav {
	display: block;
	position: absolute;
	top: 1.1rem;
	right: 0.5rem;
	cursor: pointer;
	color: #fff;
	padding: 0.2rem 10px;
	border-radius: 0.3rem;
	width: auto;
	height: 2rem;
	z-index: 9999;
		/* background: rgba(255,255,255,0.6); */
	}

	.toggleNav.open span.m,
	.toggleNav.open span.n,
	.toggleNav.open span.u {
		opacity: 1;
	}

	.toggleNav span.m,
	.toggleNav span.n,
	.toggleNav span.u {
		font-size: 10px;
		opacity: 0;
		-webkit-transition: 250ms;
		transition: 250ms;
		letter-spacing: 0.1rem;
	}

	.toggleNav span.e {
		display: inline-block;
		height: 1.2rem;
		width: 1.2rem;
	}

	.toggleNav span.e.btn-close span.bar:nth-child(1) {
		-webkit-transition: 250ms;
		transition: 250ms;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		top: 0.5rem;
	}

	.toggleNav span.e.btn-close span.bar:nth-child(2) {
		opacity: 0;
		-webkit-transition: 250ms;
		transition: 250ms;
	}

	.toggleNav span.e.btn-close span.bar:nth-child(3) {
		-webkit-transition: 250ms;
		transition: 250ms;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		bottom: 0.5rem;
	}

	.toggleNav span.e span.bar {
	-webkit-transition: 250ms;
	transition: 250ms;
	position: relative;
	display: block;
	background: #333;
	border-radius: 0.1rem;
	border-bottom: 2px solid #333;
	width: 25px;
	height: 1px;
	}

	.toggleNav span.e span.bar:nth-child(2) {
		margin: 0.4rem 0;
	}

	.toggleNav:hover span.m,
	.toggleNav:hover span.n,
	.toggleNav:hover span.u {
		opacity: 1;
		-webkit-transition: 250ms;
		transition: 250ms;
	}
}


/* ---- menu in mobile Style ---- */
.navPaneBtn {
	display: none;
}

.navPane {
	display: none;
	-webkit-transition: 250ms;
	transition: 250ms;
	position: fixed;
	-webkit-transform: translateX(-105%);
	transform: translateX(-105%);
	top: 0;
	height: 100%;
	width: 75%;
	background: rgba(0, 0, 0, 0.9);
	box-shadow: 0px 0.3rem 0.6rem rgba(0,0, 0, 0.98);
	z-index: 9998;
	padding: 5%;
	overflow-y: auto;
}

.navPane.open {
	-webkit-transform: translateX(0);
	transform: translateX(0);
	-webkit-transition: 250ms;
	transition: 250ms;
}



@media screen and (min-width:240px) and (max-width:968px){
	.navPaneBtn {
		display: none;
		position: fixed;
		right: 0;
		width: 100%;
		height: 100%;
		top: 0px;
		background: rgba(0, 0, 0, 0.1);
		z-index: 998;
	}

	.navPaneBtn.open {
		display: block;
	}

	.navPane {
		display: block;
	}

	.mobileMenu {
		width: 100%;
		padding: 5% 0;
	}

	.mobileMenu>li {
		display: block;
		margin: 0;
		padding: 0;
		border: 0px;
		position: relative;
	}

	.otherlinks {
		border-top: 1px solid rgba(255, 255, 255, 0.43);
		margin: 5% auto 0;
		padding-bottom: 0;
	}

	.mobileMenu>li>a.afinve {
		display: inline-block;
		overflow: hidden;
		padding: 0px 5%;
		text-align: left;
		line-height: 3.2rem;
		color: #fff;
		transition: all .3s;
		position: relative;
		text-decoration: none;
		font-size: 1.2rem;
		position: relative;
		z-index: 1;
		margin-right: 3.2rem;
	}

	.otherlinks>li>a.afinve {
		width: 100%;
		text-align: center;
		margin-right: 0;
	}

	.mobileMenu>li>a.btn {
		position: absolute;
		height: 3.2rem;
		width: 3.2rem;
		top: 0;
		right: 0;
	}

	.mobileMenu li a .arrow::before {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		right: 0;
		left: 0;
		margin: -0.4rem auto 0;
		width: 0.8rem;
		height: 0.8rem;
		font-size: 0;
		line-height: 0;
		background-image: url(../images/arrow_right.png);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: 100% auto;
		z-index: 99;
	}

	.mobileMenu li a .arrow.open::before {
		background-image: url(../images/arrow_down.png);
		background-size: auto 100%;
	}

	.mobileMenu>li>a.active,
	.mobileMenu>li>a:hover {
		color: #FFF;
	}

	.mobileMenu>li>ul.sub-menu,
	.mobileMenu>li>ul.sub-menu>li>ul.sub-menu {
		display: none;
		list-style: none;
		clear: both;
		margin: 0.4rem 0px 0px 8%;
		padding-bottom: 0.3rem;
	}

	.mobileMenu>li>ul.sub-menu li {
		background: none;
		margin: 0px;
		padding: 0px;
	}

	.mobileMenu>li>ul.sub-menu li>a {
		display: block;
		font-size: 1.1rem;
		line-height: 2.6rem;
		padding-left: 1.1rem;
		color: #fff;
		clear: both;
	}

	.mobileMenu>li>ul.sub-menu li>a.active,
	.mobileMenu>li>ul.sub-menu li>a:hover,
	.mobileMenu>li>ul.sub-menu>li.active>a {
		color: #FFF;
	}

}
